github.com/andybalholm/brotli.ringBuffer.data_ (field)

12 uses

	github.com/andybalholm/brotli (current package)
		ringbuffer.go#L25: 	data_       []byte
		ringbuffer.go#L50: 	if cap(rb.data_) < size {
		ringbuffer.go#L53: 		new_data = rb.data_[:size]
		ringbuffer.go#L55: 	if rb.data_ != nil {
		ringbuffer.go#L56: 		copy(new_data, rb.data_[:2+rb.cur_size_+uint32(kSlackForEightByteHashingEverywhere)])
		ringbuffer.go#L59: 	rb.data_ = new_data
		ringbuffer.go#L61: 	rb.buffer_ = rb.data_[2:]
		ringbuffer.go#L62: 	rb.data_[1] = 0
		ringbuffer.go#L63: 	rb.data_[0] = rb.data_[1]
		ringbuffer.go#L126: 		rb.data_[0] = rb.buffer_[rb.size_-2]
		ringbuffer.go#L127: 		rb.data_[1] = rb.buffer_[rb.size_-1]